home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / print / gs261sr1.zip / GDEVMEM3.C < prev    next >
C/C++ Source or Header  |  1993-05-12  |  9KB  |  302 lines

  1. /* Copyright (C) 1992 Aladdin Enterprises.  All rights reserved.
  2.  
  3. This file is part of Ghostscript.
  4.  
  5. Ghostscript is distributed in the hope that it will be useful, but
  6. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  7. to anyone for the consequences of using it or for whether it serves any
  8. particular purpose or works at all, unless he says so in writing.  Refer
  9. to the Ghostscript General Public License for full details.
  10.  
  11. Everyone is granted permission to copy, modify and redistribute
  12. Ghostscript, but only under the conditions described in the Ghostscript
  13. General Public License.  A copy of this license is supposed to have been
  14. given to you along with Ghostscript so you can know your rights and
  15. responsibilities.  It should be in a file named COPYING.  Among other
  16. things, the copyright notice and this notice must be preserved on all
  17. copies.  */
  18.  
  19. /* gdevmem3.c */
  20. /* 2- and 4-bit-per-pixel "memory" (stored bitmap) devices */
  21. /* for Ghostscript library. */
  22. #include "memory_.h"
  23. #include "gx.h"
  24. #include "gxdevice.h"
  25. #include "gxdevmem.h"            /* semi-public definitions */
  26. #include "gdevmem.h"            /* private definitions */
  27.  
  28. /* The current implementations are quite inefficient. */
  29. /* We intend to improve them someday.... */
  30.  
  31. /* ------ Generic procedures ------ */
  32.  
  33. /* Import the color mapping procedures from gdevmem2. */
  34. extern dev_proc_map_rgb_color(mem_mapped_map_rgb_color);
  35. extern dev_proc_map_color_rgb(mem_mapped_map_color_rgb);
  36.  
  37. /* We do tiling in big chunks. */
  38. #define chunk mono_chunk
  39.  
  40. /* Implement fill_rectangle by tiling. */
  41. /* This uses the same algorithm as mem_mono_fill_rectangle. */
  42. /* Note that x and w are in bit units, not pixel units. */
  43. #define x_to_byte(x) ((x) >> 3)
  44. private int
  45. fill_2or4_by_tiling(gx_device *dev, int x, int y, int w, int h,
  46.   const ulong pattern)
  47. {    uint bit;
  48.     chunk right_mask;
  49.     declare_scan_ptr(dest);
  50.     setup_rect(dest);
  51. #define write_loop(stat)\
  52.  { int line_count = h;\
  53.    chunk *ptr = dest;\
  54.    do { stat; inc_chunk_ptr(ptr, draster); }\
  55.    while ( --line_count );\
  56.  }
  57. #define write_partial(msk)\
  58.    write_loop(*ptr = (*ptr & ~msk) | (pattern & msk))
  59.     bit = x & chunk_align_bit_mask;
  60.     if ( bit + w <= chunk_bits )
  61.        {    set_mono_thin_mask(right_mask, w, bit);
  62.        }
  63.     else
  64.        {    int byte_count;
  65.         if ( bit )
  66.            {    chunk mask;
  67.             set_mono_left_mask(mask, bit);
  68.             write_partial(mask);
  69.             dest++;
  70.             w += bit - chunk_bits;
  71.            }
  72.         set_mono_right_mask(right_mask, w & chunk_bit_mask);
  73.         if ( (byte_count = (w >> 3) & -chunk_bytes) != 0 )
  74.            {    write_loop(memset(ptr, (byte)pattern, byte_count));
  75.             inc_chunk_ptr(dest, byte_count);
  76.            }
  77.        }
  78.     if ( right_mask )
  79.         write_partial(right_mask);
  80.     return 0;
  81. }
  82.  
  83. /* We do everything else byte-by-byte. */
  84. #undef chunk
  85. #define chunk byte
  86.  
  87. /* ------ Mapped 2-bit color ------ */
  88.  
  89. /* Procedures */
  90. declare_mem_procs(mem_mapped2_copy_mono, mem_mapped2_copy_color, mem_mapped2_fill_rectangle);
  91.  
  92. /* The device descriptor. */
  93. private gx_device_procs mem_mapped2_procs =
  94.   mem_procs(mem_mapped_map_rgb_color, mem_mapped_map_color_rgb,
  95.     mem_mapped2_copy_mono, mem_mapped2_copy_color, mem_mapped2_fill_rectangle);
  96.  
  97. /* The instance is public. */
  98. const gx_device_memory mem_mapped2_color_device =
  99.   mem_device("image(2)", 2, mem_mapped2_procs);
  100.  
  101. /* Convert x coordinate to byte offset in scan line. */
  102. #undef x_to_byte
  103. #define x_to_byte(x) ((x) >> 2)
  104.  
  105. /* Fill a rectangle with a color. */
  106. private int
  107. mem_mapped2_fill_rectangle(gx_device *dev,
  108.   int x, int y, int w, int h, gx_color_index color)
  109. {    int code;
  110.     fit_fill(dev, x, y, w, h);
  111.     /* Patch the width in the device temporarily. */
  112.     dev->width <<= 1;
  113.     if ( color == 0 || color == 3 )
  114.        {    /* Use monobit fill_rectangle. */
  115.         code = (*mem_mono_device.procs->fill_rectangle)
  116.           (dev, x << 1, y, w << 1, h, color & 1);
  117.        }
  118.     else
  119.        {    /* Use monobit tile_rectangle. */
  120.         static const ulong tile_patterns[4] =
  121.            {    0, 0x55555555, 0xaaaaaaaa, 0xffffffff
  122.            };
  123.         code = fill_2or4_by_tiling(dev, x << 1, y, w << 1, h,
  124.                        tile_patterns[color]);
  125.        }
  126.     /* Restore the correct width. */
  127.     dev->width >>= 1;
  128.     return code;
  129. }
  130.  
  131. /* Copy a bitmap. */
  132. private int
  133. mem_mapped2_copy_mono(gx_device *dev,
  134.   const byte *base, int sourcex, int sraster, gx_bitmap_id id,
  135.   int x, int y, int w, int h, gx_color_index zero, gx_color_index one)
  136. {    const byte *line;
  137.     int first_bit;
  138.     byte first_mask, b0, b1;
  139.     static byte btab[4] = { 0, 0x55, 0xaa, 0xff };
  140.     static byte bmask[4] = { 0xc0, 0x30, 0xc, 3 };
  141.     declare_scan_ptr(dest);
  142.     fit_copy(dev, base, sourcex, sraster, id, x, y, w, h);
  143.     setup_rect(dest);
  144.     line = base + (sourcex >> 3);
  145.     first_bit = 0x80 >> (sourcex & 7);
  146.     first_mask = bmask[x & 3];
  147.     b0 = btab[zero & 3];
  148.     b1 = btab[one & 3];
  149.     while ( h-- > 0 )
  150.        {    register byte *pptr = (byte *)dest;
  151.         const byte *sptr = line;
  152.         register int sbyte = *sptr++;
  153.         register int bit = first_bit;
  154.         register byte mask = first_mask;
  155.         int count = w;
  156.         do
  157.            {    if ( sbyte & bit )
  158.                {    if ( one != gx_no_color_index )
  159.                   *pptr = (*pptr & ~mask) + (b1 & mask);
  160.                }
  161.             else
  162.                {    if ( zero != gx_no_color_index )
  163.                   *pptr = (*pptr & ~mask) + (b0 & mask);
  164.                }
  165.             if ( (bit >>= 1) == 0 )
  166.                 bit = 0x80, sbyte = *sptr++;
  167.             if ( (mask >>= 2) == 0 )
  168.                 mask = 0xc0, pptr++;
  169.            }
  170.         while ( --count > 0 );
  171.         line += sraster;
  172.         inc_chunk_ptr(dest, draster);
  173.        }
  174.     return 0;
  175. }
  176.  
  177. /* Copy a color bitmap. */
  178. private int
  179. mem_mapped2_copy_color(gx_device *dev,
  180.   const byte *base, int sourcex, int sraster, gx_bitmap_id id,
  181.   int x, int y, int w, int h)
  182. {    int code;
  183.     fit_copy(dev, base, sourcex, sraster, id, x, y, w, h);
  184.     /* Use monobit copy_mono. */
  185.     /* Patch the width in the device temporarily. */
  186.     dev->width <<= 1;
  187.     code = (*mem_mono_device.procs->copy_mono)
  188.       (dev, base, sourcex << 1, sraster, id,
  189.        x << 1, y, w << 1, h, (gx_color_index)0, (gx_color_index)1);
  190.     /* Restore the correct width. */
  191.     dev->width >>= 1;
  192.     return code;
  193. }
  194.  
  195. /* ------ Mapped 4-bit color ------ */
  196.  
  197. /* Procedures */
  198. declare_mem_procs(mem_mapped4_copy_mono, mem_mapped4_copy_color, mem_mapped4_fill_rectangle);
  199.  
  200. /* The device descriptor. */
  201. private gx_device_procs mem_mapped4_procs =
  202.   mem_procs(mem_mapped_map_rgb_color, mem_mapped_map_color_rgb,
  203.     mem_mapped4_copy_mono, mem_mapped4_copy_color, mem_mapped4_fill_rectangle);
  204.  
  205. /* The instance is public. */
  206. const gx_device_memory mem_mapped4_color_device =
  207.   mem_device("image(4)", 4, mem_mapped4_procs);
  208.  
  209. /* Convert x coordinate to byte offset in scan line. */
  210. #undef x_to_byte
  211. #define x_to_byte(x) ((x) >> 1)
  212.  
  213. /* Fill a rectangle with a color. */
  214. private int
  215. mem_mapped4_fill_rectangle(gx_device *dev,
  216.   int x, int y, int w, int h, gx_color_index color)
  217. {    int code;
  218.     fit_fill(dev, x, y, w, h);
  219.     /* Patch the width in the device temporarily. */
  220.     dev->width <<= 2;
  221.     if ( color == 0 || color == 15 )
  222.        {    /* Use monobit fill_rectangle. */
  223.         code = (*mem_mono_device.procs->fill_rectangle)
  224.           (dev, x << 2, y, w << 2, h, color & 1);
  225.        }
  226.     else
  227.        {    /* Use monobit tile_rectangle. */
  228.         static const ulong tile_patterns[16] =
  229.            {    0, 0x11111111, 0x22222222, 0x33333333,
  230.             0x44444444, 0x55555555, 0x66666666, 0x77777777,
  231.             0x88888888, 0x99999999, 0xaaaaaaaa, 0xbbbbbbbb,
  232.             0xcccccccc, 0xdddddddd, 0xeeeeeeee, 0xffffffff
  233.            };
  234.         code = fill_2or4_by_tiling(dev, x << 2, y, w << 2, h,
  235.                        tile_patterns[color]);
  236.        }
  237.     dev->width >>= 2;
  238.     return code;
  239. }
  240.  
  241. /* Copy a bitmap. */
  242. private int
  243. mem_mapped4_copy_mono(gx_device *dev,
  244.   const byte *base, int sourcex, int sraster, gx_bitmap_id id,
  245.   int x, int y, int w, int h, gx_color_index zero, gx_color_index one)
  246. {    const byte *line;
  247.     int first_bit;
  248.     byte first_mask, b0, b1;
  249.     declare_scan_ptr(dest);
  250.     fit_copy(dev, base, sourcex, sraster, id, x, y, w, h);
  251.     setup_rect(dest);
  252.     line = base + (sourcex >> 3);
  253.     first_bit = 0x80 >> (sourcex & 7);
  254.     first_mask = (x & 1 ? 0xf : 0xf0);
  255.     b0 = ((byte)zero << 4) + (byte)zero;
  256.     b1 = ((byte)one << 4) + (byte)one;
  257.     while ( h-- > 0 )
  258.        {    register byte *pptr